Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

$args = $args[0] ; #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

zhaodafei
Copy link

$args = $args[0] ; json_encode

 json_encode
Copy link
Owner

@nizsheanez nizsheanez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please recheck compatibility with specification. thank.

@@ -17,6 +17,9 @@ public function getParams($method)
{
$params = [];
$args = isset($this->_data['params']) ? $this->_data['params'] : [];

if(isset($args[0]) && is_array($args[0])) $args = $args[0];
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you.
This line doesn't follow JSON RPS 2.0 specification:
https://www.jsonrpc.org/specification#request_object

by-position: params MUST be an Array, containing the values in the Server expected order.
not first element inside params must be Array, but params itself must be an array.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants